home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmmix-1.1 / Imakefile < prev    next >
Makefile  |  1995-07-05  |  2KB  |  75 lines

  1. /*
  2.  * @(#)Imakefile    2.2 95/05/11
  3.  *
  4.  * Imakefile for xmmix
  5.  *
  6.  *    xmmix - Motif(tm) Audio Mixer
  7.  *
  8.  *   Copyright (C) 1995  Ti Kan
  9.  *   E-mail: ti@amb.org
  10.  *
  11.  *   This program is free software; you can redistribute it and/or modify
  12.  *   it under the terms of the GNU General Public License as published by
  13.  *   the Free Software Foundation; either version 2 of the License, or
  14.  *   (at your option) any later version.
  15.  *
  16.  *   This program is distributed in the hope that it will be useful,
  17.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *   GNU General Public License for more details.
  20.  *
  21.  *   You should have received a copy of the GNU General Public License
  22.  *   along with this program; if not, write to the Free Software
  23.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  *
  25.  */
  26.  
  27. DESTDIR = /usr/skunk
  28. BINDIR = /bin/X11
  29. MANDIR = /man/man.1
  30. MANSUFFIX = 1
  31. XAPPLOADDIR = /lib/X11/app-defaults
  32. LIBDIR = /lib/X11
  33.  
  34. /*
  35.  * If your local X configuration supports Motif correctly, the
  36.  * following LOCAL_LIBRARIES= declaration should work just fine.
  37.  * If it fails, try uncommenting the #include lines below.  If that
  38.  * still fails, then substitute the LOCAL_LIBRARIES= line with
  39.  * one of the these:
  40.  *
  41.  * LOCAL_LIBRARIES= $(XMLIB) $(XTOOLLIB) $(XLIB)
  42.  *
  43.  * or,
  44.  *
  45.  * LOCAL_LIBRARIES= -lXm -lXt -lX11
  46.  *
  47.  */
  48.  
  49. /*
  50.  * #include "Motif.tmpl"
  51.  * #include "Motif.rules"
  52.  */
  53. LOCAL_LIBRARIES= XmClientLibs
  54.  
  55.  
  56. /*
  57.  * C Source files
  58.  */
  59. SRCS=    main.c \
  60.     mixer.c \
  61.     widget.c
  62.  
  63. /*
  64.  * Objects
  65.  */
  66. OBJS=    main.o \
  67.     mixer.o \
  68.     widget.o
  69.  
  70. ComplexProgramTarget(xmmix)
  71. InstallAppDefaults(XMmix)
  72. InstallNonExec(xmmix.hlp,$(LIBDIR))
  73.  
  74.  
  75.